home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / TUNEIN / TUNEIN01.DIR / 00088_Script_88 < prev    next >
Text File  |  1995-06-01  |  651b  |  19 lines

  1. on exitFrame
  2.   global lastOracle, lastArtwork
  3.   set lastOracle = "artwork"
  4.   if lastArtwork = "date" then 
  5.     set the text of cast "Oracle Artwork" = the text of cast "Oracle Artwork/Date"
  6.     set the visibility of sprite 25 = true
  7.     updatestage
  8.   end if
  9.   if lastArtwork = "artist" then 
  10.     set the text of cast "Oracle Artwork" = the text of cast "Oracle Artwork/artist"
  11.     set the visibility of sprite 26 = true
  12.     updatestage
  13.   end if
  14.   if lastArtwork = "title" then 
  15.     set the text of cast "Oracle Artwork" = the text of cast "Oracle Artwork/title"
  16.     set the visibility of sprite 27 = true
  17.     updatestage
  18.   end if
  19. end